html, body {
    width:100%;
    height:100%;
    font-size:16px;
}

svg text {
    font-family:sans-serif;
    -ms-text-size-adjust:100%;
    -webkit-text-size-adjust:100%
}

#graphic-container {
    width:920px;
    min-height:688px;
    position:relative;
    margin: 0 auto;
}

#graphic {
    position:relative;
    float:left;
    width:100%;
    min-height:688px;
}

.graph-header {
	font-family: 'Open Sans', sans-serif;
    font-weight: 600;
	/*font-size:23px;*/
  font-size:21px;
}

#main-header {
  font-weight:800;
}

/*.line, .drawn-line {
  fill: none;
  stroke-width: 1.5px;
}*/
/* Text of your guess and the correct answer */
text.answer-number {
	font-size: 30px;
	font-weight: bold;
	text-anchor:middle;
}
text.answer-number.correct {
	fill:  #8CC63E;
	font-size: 46px;
}
/* Text of labels for these */
text.answer-header {
	font-size: 20px;
	font-weight: bold;
	text-anchor:middle;
}
/* Right-blurb text */
text.right-blurb {
	font-size: 18px;
	text-anchor:middle;
}
/* text for opening and closing slides */
text.para {
	font-size: 20px;
}
text.bullet {
	font-size: 20px;
}

/* small text for questions */
text.smallText {
  font-size: 20px;
}

text.smallText2 {
  font-size: 16px;
  text-anchor: middle;
  font-weight: bold;
  fill: white;
}

text.smallTextBold {
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
  font-style: italic;
  font-size: 22px;
}

text.smallTextColor {
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
  font-style: italic;
  fill: #C05131;
  font-size: 22px;
}

text.smallTextFast {
  font-size: 16px;
  text-anchor: middle;
  font-weight: bold;
  fill: white;
}

text.callout-text {
  font-size: 16px;
}

/*bar graph fonts*/
.legend {
    font-size: 15px;
}

/* button */
rect.submit-button,
rect.line-button,
rect.retry-button {
	border-radius: 5px;
	cursor: pointer;
}
text.submit-button, 
text.line-button,
text.retry-button {
	fill: white;
	font-size: 18px;
	cursor: pointer;
}
/* slider */
rect#slide-bar {
	cursor: grab;
	cursor: -webkit-grab;
}
rect#slide-bar:active {
	cursor: grabbing;
	cursor: -webkit-grabbing;
}
rect#slide-bar.inactive {
	cursor: auto;
}
text.directions {
	font-size: 14px;
}
/* green topic area in header */
tspan.topic-area-text {
	fill:  #8CC63E;
	font-weight: bold;
}
tspan.answer-in-blurb {
	font-weight: 900;
}
text.link {
	fill:blue;
	text-decoration: underline;
	cursor: pointer;
}

/*Choropleth*/
.legend-text {
    font-size: 15px;
    font-family: sans-serif;
}

/**********************/
/* LINE CHARTS        */
/**********************/
.axis path,
.axis line {
  fill: none;
  stroke: #000;
  shape-rendering: crispEdges;
}

.y-axis {
  font-size: 14px;
}

.x-axis {
  font-size: 14px;
}


.axis-text {
  font-size: 14px;
  text-anchor: start;
}

.axis-label {
  font-size: 14px;
  text-anchor: start;
}

.vert-line-label-pre {
  font-size: 14px;
  text-anchor: start;
}

.vert-line-label {
  font-size: 13px;
  text-anchor: start;
}

.source-text {
  font-size: 13px;
  text-anchor: left;
}

.line {
  fill: none;
  stroke: #77B800;
  stroke-width: 1.5px;
}

/*.dashed {
  fill: none;
  stroke: white;
  stroke-width: 1.5px;
  stroke-dasharray: 10;
}

path.line{
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: dash 5s linear infinite;
}

@keyframes dash {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}*/

.tooltip-circle {
  fill: #96AB96;
}

/*********************/
/*  TOOLTIP OVERLAY  */
/*********************/

.tooltip-title {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.d3-tip {
  line-height: 1;
  font-weight: bold;
  font-family: sans-serif;
  padding: 12px;
  background: rgba(0, 0, 0, .7);
  color: #fff;
  border-radius: 2px;
}

/* Creates a small triangle extender for the tooltip 
.d3-tip:after {
  box-sizing: border-box;
  display: inline;
  font-size: 10px;
  width: 100%;
  line-height: 1;
  color: rgba(0, 0, 0, 0.8);
  content: "\25BC";
  position: absolute;
  text-align: center;
}*/

/* Style northward tooltips differently */
.d3-tip.n:after {
  margin: -1px 0 0 0;
  top: 100%;
  left: 0;
}